home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Applications
/
Portable Patmos
/
src
/
portable kernel
/
mac
/
isatty.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-24
|
237 b
|
17 lines
|
[
TEXT/KAHL
]
#include <fcntl.h>
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <stdio.h>
#include <unistd.h>
int
isatty(fd)
int fd;
{
struct termios t;
return(ioctl(fd, TIOCGETA, &t) != -1);
}